home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga CD-ROM Collection
/
Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso
/
auge4000
/
46
/
lib
/
extra
/
sleep.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-06-20
|
186b
|
21 lines
/*
* SLEEP.C
*/
#include <libraries/dos.h>
#include <stdio.h>
void
sleep(n)
int n;
{
while (n) {
Delay(50);
if (SetSignal(0,0) & SIGBREAKF_CTRL_C)
break;
--n;
}
}